home *** CD-ROM | disk | FTP | other *** search
- SP Count voices -> count
-
- count integer returns how many voices are currently installed
- in your application and/or System Folder. When
- no Speech Manager is available this function
- returns zero.
-
- Returns the number of voices currently installed and available to the external.
-
- The returned value can be used as the maximum index number which you can pass to SP Voicename.
-
- Examples:
- $count := SP Count voices
-
- ALERT ("There are " + String(SP Count voices) +
- " voice(s) installed.")
-
- `since this number can be used as a limit of the index needed with
- `the Voicename function:
- For ($i;1;SP Count voices)
- `do something here, like:
- $err := SP Voicename ($i;$voicename)
- End for
-
-
-